home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wil4c10.zip / FROM16._B_ < prev    next >
Text File  |  1997-07-26  |  719b  |  34 lines

  1. #
  2. # Borland makefile for FROM [Win16]
  3. # Requires WIL16.DLL & WIL16.LIB
  4. #
  5. # To use: "make -f from16._B_"
  6. #
  7.  
  8. CCFLAGS = -c
  9.  
  10. from.exe: from.res from.obj about.obj async.obj paint.obj readini.obj str.obj from.def wil16.lib
  11.    tlink -c -n -Tw  c0ws @from.rsp,from,from,mathws cws import wil16,from,from
  12.    rlink from.res from.exe
  13.  
  14. from.res: from.rc
  15.    brcc from.rc
  16.  
  17. about.obj: about.c about.h
  18.    bcc $(CCFLAGS)  about.c
  19.  
  20. async.obj: async.c async.h
  21.    bcc $(CCFLAGS)  async.c
  22.  
  23. from.obj: from.c wil.h
  24.    bcc $(CCFLAGS)  from.c
  25.  
  26. paint.obj: paint.c paint.h
  27.    bcc $(CCFLAGS)  paint.c
  28.  
  29. readini.obj: readini.c readini.h
  30.    bcc $(CCFLAGS)  readini.c
  31.  
  32. str.obj: str.c str.h
  33.    bcc $(CCFLAGS)  str.c  
  34.